home *** CD-ROM | disk | FTP | other *** search
Text File | 1985-11-25 | 5.0 KB | 97 lines | [TEXT/ttxt] |
- Well, here is my long-awaited opportunity to contribute something to
- the net. My only regret is that it is only a game; when my copy of Inside
- Macintosh arrives, I will be able to write more useful programs in my spare
- time. However, I have been working on this Othello-playing program off and
- on for several months to learn how to write Macintosh programs, and it has
- gotten to the point where it is actually presentable, so I thought others
- might like to have it. Notice that, although the "Move" menu is not
- dimmed, none of its commands are implemented yet. I am including both a
- binhex 4.0 file and the SUMacC source, including a makefile (that most
- important of all parts of any source distribution). Anyone interested in
- grabbing the source code and modifying it might want to get the binhex file
- too, since it contains the BNDL, FREF, and ICN# resources necessary to make
- the icon appear on the desktop. I had to do these on the Mac, since the
- SUMacC rmaker doesn't know how to create them. The signature of this
- program is "OTLO". I haven't bothered to register it; I hope it isn't used
- yet. To compile the source, just type "make dl", which will compile
- everything and download it to your Macintosh, ready to run.
-
- This article is probably a bit long for a game announcement, but this
- program contains the extent of my knowledge about the innards of the
- Macintosh, and there were a few points I wanted to mention.
-
- User Interface
-
- One of my primary goals in this program was that the user should never
- have to wait for the Mac to say it's OK to go on. At higher skill levels
- (like 4 and beyond), the program may take a long time to figure out its
- next move, but this doesn't mean that the user has to sit there staring at
- the screen waiting for the next move. While it is "thinking", the user can
- still pull down menus, start up desk accessories and use them. This is
- made possible by my approach to handling events, which is slightly
- different from that of the other programs I have seen source code for (more
- later about the DoEvent() function). Most importantly, there is a command
- that interrupts the program's "thinking" process, so the user can regain
- complete control at any time. Quitting while the program is thinking is
- also possible.
-
- Another goal was maximum flexibility. At any time, even while the
- Macintosh is thinking about its next move, all the commands can still be
- used. Changing the skill level or players takes effect on the next move;
- other changes (including turning tracing on and off) take effect
- immediately.
-
- Source Code
-
- When the skel program came out, I stuck my already-existing Othello
- program into it so that I could use menus, so you will see some similarity
- with that program. My big departure from it was to replace the
- MainEventLoop function with a DoEvent function, which did essentially what
- MainEventLoop did, but just once. Hence, the main program contains
-
- while (TRUE)
- DoEvent();
-
- and I can call DoEvent anywhere I want, to insure that the user never
- loses control. Since the function that determines the next move is
- recursive, I only had to put in one extra call to DoEvent. I also put all
- the code dealing with menus in a separate file; it just made more sense to
- me to do it that way.
-
- For those of you that learn about the Macintosh by reading source
- code, here is a summary of what you can learn from Othello:
-
- Fonts, etc.:
- info.c draws strings in different fonts and styles (bold, italic,
- plain text) and centers them.
-
- C strings vs. Pascal strings:
- In menu.c, where it handles the "About Othello" command, the
- original version of skel I had used a kludgey way of converting
- the Pascal string returned from GetString() to a C string that
- didn't work in some cases. You can see how isapstr() solves that
- problem there and in info.c.
-
- Graphics:
- drawboard.c draws various lines and ovals.
-
- Further Work
-
- To those who decide to look at the source code, I would like to know
- why the Extras desk accessory (version 1.2) crashes the system when it
- closes from within Othello; it's OK as long as I don't close it. Other
- improvements to be done are implementing the "Save Game" function (I don't
- know how to do I/O), implementing the commands in the Move menu (I just
- haven't had time -- I have in mind that the undo/redo function will
- remember the whole history of the game), and maybe having the program
- remember the players, skill, and trace values from one run to the next (by
- writing into its data fork?). Notice that I already have a nice Othello
- document icon for saved games, whenever that feature is implemented (I
- detest invisible files). If you make a significant improvement, please let
- me know. Not that I think this is a very important program, but I my be
- interested in seeing how it's done.
-
- Steven Munson
- sbm@purdue.ARPA
- sbm@purdue.CSNET
-